home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 701-725 / 722 / counting / installfont < prev    next >
Text File  |  1995-03-18  |  658b  |  25 lines

  1. .K ""
  2. echo "This script will install the plymouth font in your FONTS: directory."
  3. echo ""
  4.  
  5. ask "Do you wish to continue with the installation? [y/n]"
  6. if WARN
  7.   if not EXISTS fonts:plymouth.font
  8.     echo "No existing plymouth.font, installing plymouth font..."
  9.     copy fonts fonts: all
  10.   else
  11.     echo "Found an existing plymouth.font in your FONTS: directory."
  12.     ask "Do you wish to replace it with this version of the font? [y/n]"
  13.       if WARN
  14.         echo "Updating plymouth font..."
  15.     copy fonts fonts: all
  16.       else
  17.         echo "Font unchanged."
  18.       endif
  19.     endif
  20.   endif
  21. endif
  22.  
  23. echo "All Done.  Click close gadget to get rid of window."
  24. endcli
  25.